home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- global IconList2, gCurrLabel
- if the frameLabel <> 0 then
- gCurrLabel = the frameLabel
- end if
- IconList2 = [:]
- start = 5
- addProp(IconList2, start, new(script("minor icons"), "open", "internal", start, the loc of sprite start, 1))
- start = start + 1
- addProp(IconList2, start, new(script("minor icons"), "print", "internal", start, the loc of sprite start, 1))
- start = start + 1
- addProp(IconList2, start, new(script("minor icons"), "cut", "internal", start, the loc of sprite start, 1))
- start = start + 1
- addProp(IconList2, start, new(script("minor icons"), "copy", "internal", start, the loc of sprite start, 1))
- start = start + 1
- addProp(IconList2, start, new(script("minor icons"), "paste", "internal", start, the loc of sprite start, 1))
- start = start + 1
- addProp(IconList2, start, new(script("minor icons"), "save", "internal", start, the loc of sprite start, 1))
- start = start + 1
- addProp(IconList2, start, new(script("minor icons"), "sound", "internal", start, the loc of sprite start, 1))
- start = start + 1
- addProp(IconList2, start, new(script("minor icons"), "help", "internal", start, the loc of sprite start, 1))
- end
-
- on exitFrame
- global IconList2, gMenuButton, gMenuExit, gTourForwardArrow, gTourBackArrow, gPlaySound
- isMemoryAvailable("continue the tour", 1200, 500)
- gPlaySound = 1
- repeat with X = 5 to 12
- iconObj = getaProp(IconList2, X)
- Inscope(iconObj)
- end repeat
- repeat with rc in [gMenuButton, gMenuExit, gTourForwardArrow, gTourBackArrow]
- Inscope(rc)
- end repeat
- setHandCursor([5, 6, 7, 8, 9, 10, 11, 12, 40, 41, 42])
- end
-